Extract one or more pages from the file associated with this PDFFile object using an array containing page numbers.
public void ExtractPages(
int[] pages,
string destinationFileName
)
public void extractPages(
int pages[],
java.lang.String destinationFileName
);
public:
void ExtractPages(
int pages[],
String^ destinationFileName
)
def ExtractPages(self,pages,destinationFileName):
pages
The array of pages to be extracted. The array cannot be null and each value in the array must be greater than or equal to 1.
destinationFileName
Name of the destination PDF file to be created. If the value of this parameter is null, then the filename set in FileName will be updated.
To use this method, associate this PDFFile object with a valid PDF file and optional password. You can achieve this by either using the PDFFile(string fileName) or PDFFile(string fileName, string password) constructors or set the filename and optional password directly into the FileName and Password properties. You do not need to call Load before using this method.
This method will use the following properties of this PDFFile object:
DocumentProperties. If the value of this property is null, then default properties will be used.
SecurityOptions. If the value of this property is not null, then the destination file will be encrypted using the SecurityOptions properties. Otherwise, if the value of SecurityOptions is null, then the resulting file will not be encrypted.
CompatibilityLevel. The version of the generated PDF file.
You can also pass the source pages as range by using the PDFFile.ExtractPages(int firstPageNumber, int lastPageNumber, string destinationFileName) method. Additionally, you can combine pages from multiple files using the PDFFile.MergeFiles or PDFFile.MergeWith methods.
using Leadtools.WinForms;
using Leadtools;
using Leadtools.Codecs;
using Leadtools.Controls;
using Leadtools.Drawing;
using Leadtools.ImageProcessing;
using Leadtools.Pdf;
using Leadtools.Svg;
//This example will extract pages 1, 5 and 3 from a multipage PDF file.
// Note that in this case, the pages are outputted in different order from the source file.
public void ExtractPages()
{
string srcFile = Path.Combine(LEAD_VARS.ImagesDir, @"Leadtools.pdf");
string dstFile = Path.Combine(LEAD_VARS.ImagesDir, "leadtools_1-5-3.pdf");
Leadtools.Pdf.PDFFile pdfFile = new Leadtools.Pdf.PDFFile(srcFile);
int[] srcPages = new int[3];
srcPages[0] = 1;
srcPages[1] = 5;
srcPages[2] = 3;
pdfFile.ExtractPages(srcPages, dstFile);
}
static class LEAD_VARS
{
public const string ImagesDir = @"C:\LEADTOOLS23\Resources\Images";
}
import java.io.ByteArrayInputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.FileReader;
import java.io.IOException;
import java.io.InputStream;
import java.nio.file.Files;
import java.nio.file.Paths;
import java.nio.file.StandardCopyOption;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import java.util.Scanner;
import org.junit.*;
import org.junit.runner.JUnitCore;
import org.junit.runner.Result;
import org.junit.runner.notification.Failure;
import static org.junit.Assert.*;
import leadtools.*;
import leadtools.codecs.*;
import leadtools.pdf.*;
// This example will extract pages 1, 5 and 3 from a multipage PDF file.
// Note that in this case, the pages are outputted in different order from the
// source file.
public void pdfFileExtractPagesArrayExample() {
final String LEAD_VARS_IMAGES_DIR = "C:\\LEADTOOLS23\\Resources\\Images";
String srcFile = combine(LEAD_VARS_IMAGES_DIR, "Leadtools.pdf");
String dstFile = combine(LEAD_VARS_IMAGES_DIR, "leadtools_1-5-3.pdf");
PDFFile pdfFile = new PDFFile(srcFile);
int[] srcPages = new int[3];
srcPages[0] = 1;
srcPages[1] = 5;
srcPages[2] = 3;
pdfFile.extractPages(srcPages, dstFile);
assertTrue(new PDFFile(dstFile).getPageCount() == 3);
}
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document